home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 5 / Apprentice-Release5.iso / Source Code / Libraries / Advanced I⁄O v2.3 / Advanced i⁄o / c++serv.dr < prev    next >
Text File  |  1995-06-19  |  1KB  |  30 lines

  1.         Service C++ functions and classes
  2.  
  3. Makefile        Makefile for making the library
  4. README            What is this all about and how to use it
  5.  
  6. myenv.h            My customary standard environment
  7. myenv.cc        and supporting programs
  8.  
  9. endian_io.h        Read/Write ints of various sizes taking the byte
  10. endian_io.cc          order into account + bit-stream IO
  11. vendian_io.cc        Verification program
  12.  
  13.         Histogram of an integer-valued distribution
  14. histogram.h        Declaration of the class Histogram
  15. histogram.cc        Compouting the histogram and related operations
  16. vhistogram.cc        Verification of histogram operations
  17.  
  18.         Arithmetic Coding of the sequence of integers
  19. arithm.h        Declaration of the class ArithmCoding
  20. arithm_coding.cc    Encoding/Decoding the input character
  21.              Providing the codec with the probability of the
  22.              current symbol to code
  23. arithm_model.cc        Basics of the symbol source model
  24. arithm_modadapt.h    Adaptive model, uses some apriori initial prob distr
  25. arithm_modadapt.cc    and adjusts it as symbols are processed
  26. arithm_modadh.h        Adaptive model, uses the histogram to guess the initial
  27. arithm_modadh.cc    prob distr and tailors it as symbols are processed
  28.  
  29. varithm.cc        Verify the arithmetic coding
  30.